home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / mig / Mig_GetIdleNode.c < prev    next >
C/C++ Source or Header  |  1990-06-22  |  2KB  |  59 lines

  1. /* 
  2.  * Mig_GetIdleNode.c --
  3.  *
  4.  *    Source code for the Mig_GetIdleNode procedure.
  5.  *    This procedure returns an idle host that may be
  6.  *    used for migration.
  7.  *
  8.  * Copyright 1988 Regents of the University of California
  9.  * Permission to use, copy, modify, and distribute this
  10.  * software and its documentation for any purpose and without
  11.  * fee is hereby granted, provided that the above copyright
  12.  * notice appear in all copies.  The University of California
  13.  * makes no representations about the suitability of this
  14.  * software for any purpose.  It is provided "as is" without
  15.  * express or implied warranty.
  16.  */
  17.  
  18. #ifndef lint
  19. static char rcsid[] = "$Header: /sprite/src/lib/c/mig/RCS/Mig_GetIdleNode.c,v 2.0 90/03/10 13:12:48 douglis Stable $ SPRITE (Berkeley)";
  20. #endif not lint
  21.  
  22.  
  23. #include <sprite.h>
  24. #include <mig.h>
  25.  
  26.  
  27.  
  28. /*
  29.  *----------------------------------------------------------------------
  30.  *
  31.  * Mig_GetIdleNode --
  32.  *
  33.  *    Obtain an idle node from the migration server.
  34.  *    This is a backward-compatible interface to the new
  35.  *    migration library.
  36.  *
  37.  * Results:
  38.  *    On error, -1 is returned.  If no host is available, 0 is returned.
  39.  *    If successful, the ID of an idle host is returned.
  40.  *
  41.  * Side effects:
  42.  *    None.
  43.  *
  44.  *----------------------------------------------------------------------
  45.  */
  46. int
  47. Mig_GetIdleNode()
  48. {
  49.     int hostsAssigned;
  50.     int hostNumbers[1];
  51.  
  52.     hostsAssigned = Mig_RequestIdleHosts(1, MIG_NORMAL_PRIORITY, 0,
  53.                      (void (*)()) NULL, hostNumbers);
  54.     if (hostsAssigned <= 0) {
  55.     return(hostsAssigned);
  56.     } 
  57.     return(hostNumbers[0]);
  58. }
  59.